82377374eaab68038ac7920b17b1cf235f0b7b10,src/org/jgroups/protocols/pbcast/STATE_TRANSFER.java,StateHeader,writeExternal,#ObjectOutput#,514

Before Change


            out.writeLong(id);
            out.writeByte(type);
            out.writeObject(my_digest);
            out.writeUTF(state_id);
        }

After Change


            out.writeLong(id);
            out.writeByte(type);
            out.writeObject(my_digest);
            if(state_id == null) {
                out.writeBoolean(false);
            }
            else {
                out.writeBoolean(true);
                out.writeUTF(state_id);
            }
        }